home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / tx2mb242.zip / LOGMAIL.BAT < prev    next >
DOS Batch File  |  1993-06-29  |  709b  |  13 lines

  1. @echo off
  2. rem ┌────────────────────────────────────────────────────────────────────────┐
  3. rem │ Takes any VERBOSE.* files and imports them as public messages to show  │
  4. rem │ what mail has been processed.  Also takes REPORT.LOG and enters it as  │
  5. rem │ a R/O message to the Sysop to show activity over a period of time.     │
  6. rem └────────────────────────────────────────────────────────────────────────┘
  7. echo ** putting VERBOSE.* file into main board as public message...
  8. TXT2MSG 0 d:\rnet\verbose.* -p -fSYSOP -tALL
  9. copy d:\rnet\verbose.* d:\rnet\offline
  10. del d:\rnet\verbose.*
  11. echo ** putting REPORT.LOG file into main board as private message...
  12. TXT2MSG 0 d:\rnet\report.log -r -fEVENT -tSYSOP
  13.